home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / wctail.mak < prev    next >
Text File  |  1997-02-21  |  2KB  |  76 lines

  1. #    Copyright (C) 1995 Aladdin Enterprises.  All rights reserved.
  2. # This file is part of Aladdin Ghostscript.
  3. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. # or distributor accepts any responsibility for the consequences of using it,
  5. # or for whether it serves any particular purpose or works at all, unless he
  6. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. # License (the "License") for full details.
  8. # Every copy of Aladdin Ghostscript must include a copy of the License,
  9. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. # under certain conditions described in the License.  Among other things, the
  12. # License requires that the copyright notice and this notice be preserved on
  13. # all copies.
  14.  
  15. # wctail.mak
  16. # Last part of Watcom C/C++ makefile common to MS-DOS and MS Windows.
  17.  
  18. # Define the name of this makefile.
  19. WCTAIL_MAK=wctail.mak
  20.  
  21. # Include the generic makefiles, except for devs.mak and int.mak.
  22. !include version.mak
  23. !include gs.mak
  24. !include lib.mak
  25. !include jpeg.mak
  26. !include libpng.mak
  27. !include zlib.mak
  28.  
  29. # -------------------------- Auxiliary programs --------------------------- #
  30.  
  31. $(ECHOGS_XE): echogs.$(OBJ)
  32.     echo OPTION STUB=$(STUB) >_temp_.tr
  33.     echo $LIBPATHS >>_temp_.tr
  34.     $(LINK) @_temp_.tr FILE echogs
  35.  
  36. echogs.$(OBJ): echogs.c
  37.     $(CCAUX) echogs.c
  38.  
  39. $(GENARCH_XE): genarch.$(OBJ)
  40.     echo $LIBPATHS >_temp_.tr
  41.     $(LINK) @_temp_.tr FILE genarch
  42.  
  43. genarch.$(OBJ): genarch.c $(stdpre_h)
  44.     $(CCAUX) genarch.c
  45.  
  46. $(GENCONF_XE): genconf.$(OBJ)
  47.     echo OPTION STUB=$(STUB) >_temp_.tr
  48.     echo OPTION STACK=8k >>_temp_.tr
  49.     echo $LIBPATHS >>_temp_.tr
  50.     $(LINK) @_temp_.tr FILE genconf
  51.  
  52. genconf.$(OBJ): genconf.c $(stdpre_h)
  53.     $(CCAUX) genconf.c
  54.  
  55. $(GENINIT_XE): geninit.$(OBJ)
  56.     echo OPTION STUB=$(STUB) >_temp_.tr
  57.     echo OPTION STACK=8k >>_temp_.tr
  58.     echo $LIBPATHS >>_temp_.tr
  59.     $(LINK) @_temp_.tr FILE geninit
  60.  
  61. geninit.$(OBJ): geninit.c $(stdio__h) $(string__h)
  62.     $(CCAUX) geninit.c
  63.  
  64. # No special gconfig_.h is needed.
  65. # Watcom `make' supports output redirection.
  66. gconfig_.h: $(WCTAIL_MAK)
  67.     echo /* This file deliberately left blank. */ >gconfig_.h
  68.  
  69. gconfigv.h: $(WCTAIL_MAK) $(MAKEFILE) $(ECHOGS_XE)
  70.     $(EXP)echogs -w gconfigv.h -x 23 define USE_ASM -x 2028 -q $(USE_ASM)-0 -x 29
  71.     $(EXP)echogs -a gconfigv.h -x 23 define USE_FPU -x 2028 -q $(FPU_TYPE)-0 -x 29
  72.     $(EXP)echogs -a gconfigv.h -x 23 define EXTEND_NAMES 0$(EXTEND_NAMES)
  73.